home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #14 / Monster Media No. 14 (April 1996) (Monster Media, Inc.).ISO / prog_gen / instal11.zip / UNSETUP.DPR < prev    next >
Text File  |  1996-01-11  |  389b  |  19 lines

  1. program Unsetup;
  2.  
  3. uses
  4.   Forms,
  5.   Dialun in 'DIALUN.PAS' {DialUninstall},
  6.   Unabout in 'UNABOUT.PAS' {Final},
  7.   Decla in 'DECLA.PAS',
  8.   Disque in 'DISQUE.PAS',
  9.   Lecture in 'LECTURE.PAS';
  10.  
  11. {$R *.RES}
  12.  
  13. begin
  14.   Application.Title := 'UnInstall v 1.0';
  15.   Application.CreateForm(TDialUninstall, DialUninstall);
  16.   Application.CreateForm(TFinal, Final);
  17.   Application.Run;
  18. end.
  19.